home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
vb3
/
pro11
/
demo.frm
< prev
next >
Wrap
Text File
|
1993-11-06
|
4KB
|
125 lines
VERSION 2.00
Begin Form Form1
Caption = "XLabel Demo"
ClientHeight = 4020
ClientLeft = 1095
ClientTop = 1485
ClientWidth = 6645
Height = 4425
Left = 1035
LinkTopic = "Form1"
ScaleHeight = 4020
ScaleWidth = 6645
Top = 1140
Width = 6765
Begin PictureBox Picture2
BackColor = &H00C0C0C0&
Height = 975
Left = 720
ScaleHeight = 945
ScaleWidth = 5145
TabIndex = 1
Top = 120
Width = 5175
Begin XLabel XLabel4
AlignmentH = 1 'Center
AlignmentV = 1 'Center
BackColor = &H00C0C0C0&
BackStyle = 0 'Transparent
Caption = "XLabel"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Arial"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = -1 'True
ForeColor = &H000000FF&
Height = 915
Left = 3960
Top = 0
Width = 1200
End
Begin XLabel XLabel3
AlignmentH = 1 'Center
AlignmentV = 1 'Center
BackColor = &H00C0C0C0&
BackStyle = 0 'Transparent
Caption = "XLabel"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Arial"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = -1 'True
ForeColor = &H000000FF&
Height = 915
Left = 0
Top = 0
Width = 1200
End
Begin XLabel XLabel2
AlignmentH = 1 'Center
AlignmentV = 1 'Center
BackColor = &H00C0C0C0&
BackStyle = 0 'Transparent
Caption = "XLabel Demo"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Arial"
FontSize = 18
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00FF0000&
Height = 735
Left = 0
Shadowed = -1 'True
Top = 120
Width = 5175
End
End
Begin PictureBox Picture1
BackColor = &H00000000&
Height = 2775
Left = 720
ScaleHeight = 2745
ScaleWidth = 5145
TabIndex = 0
Top = 1080
Width = 5175
Begin XLabel XLabel1
AlignmentH = 1 'Center
AlignmentV = 1 'Center
BackColor = &H00000000&
BackStyle = 0 'Transparent
Caption = "XLabel"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Times New Roman"
FontSize = 12
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H0000FFFF&
Height = 1335
Left = 720
Top = 720
Width = 3735
End
End
Begin Timer Timer1
Interval = 1
Left = 240
Top = 2880
End
End
Option Explicit
Sub Timer1_Timer ()
XLabel1.Angle = (XLabel1.Angle + 5) Mod 360
If XLabel1.Angle Mod 90 = 0 Then
XLabel2.Shadowed = Not XLabel2.Shadowed
End If
XLabel3.Angle = (XLabel3.Angle + 30) Mod 360
XLabel4.Angle = (XLabel4.Angle - 30) Mod 360
End Sub